home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / misc / m2_part1.lha / modula / dice / dice.LHA / include / sys / dir.h next >
Encoding:
C/C++ Source or Header  |  1991-02-17  |  216 b   |  16 lines

  1.  
  2. typedef struct {
  3.     long    am_Private;
  4. } DIR;
  5.  
  6. struct direct {
  7.     char    *d_name;
  8.     short   d_namlen;
  9. };
  10.  
  11. DIR *opendir(const char *);
  12. struct direct *readdir(DIR *);
  13. int rewinddir(DIR *);
  14. int closedir(DIR *);
  15.  
  16.